body,
html {
  font-family: sans-serif;
  padding: 0;
  margin: 0;
  background: #000c14;
}
/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red;
}

::selection {
  background-color: #3a3b3c;
  color: #fff;
}

/*===================================== Chat Dashboard =====================================*/
.logo {
  width: 150px;
  margin-left: 40px;
}

.logo img {
  width: 100%;
}

.main-sec {
  display:flex;
  align-items:center;
  /* height: 100vh; */
  padding: 20px 0px;
  background-color: #000c14;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.msger-header-title .pdf-name {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}

.msger {
  display: flex;
  flex-flow: column wrap;
  height: 96vh;
  border-radius: 20px;
}

.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #890909;
  color: #d5caca;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 31px;
}

.msger-chat::-webkit-scrollbar {
  width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}

.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}

.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}

.msg:last-of-type {
  margin: 0;
}

.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.msg-bubble {
  max-width: 100%;
  padding: 15px;
  border-radius: 15px;
  color: #fff;
  font-size: 13px;
  background-color: #f8002f;
  background-image: linear-gradient(90deg, #f8002f 0, #000c14 70%);
}

.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  float: right;
}

.msg-info-name {
  margin-right: 10px;
  font-weight: 700;
}

.msg-info-time {
  font-size: 12px;
}

.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}

.right-msg {
  flex-direction: row-reverse;
}

.right-msg .msg-bubble {
  color: #fff;
  border-bottom-right-radius: 0;
  background-color: #f8002f;
  background-image: linear-gradient(90deg, #f8002f 0, #000c14 74%);
}

.msg-bubble {
  box-shadow: 0 0 10px #ffff;
}

.right-msg .msg-img {
  margin: 0 0 0 10px;
}

.msger-inputarea {
  display: flex;
}

.msger-inputarea:focus,
input:focus {
  outline: 0;
}

.msger-inputarea * {
  padding: 10px;
  border: none;
  font-size: 1em;
}

.msger-input {
  flex: 1;
  background: #ddd;
  border-radius: 0 0 0 10px;
}

.msger-send-btn {
  background: #00c441;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  background: #890909;
  padding: 10px 50px;
  border-radius: 0 0 10px 0;
}

.msger-send-btn:hover {
  border: none;
  background-color: #000;
}

.msger-chat {
  box-shadow: inset 0 0 10px #ccc;
}

.msger-chat::-webkit-scrollbar {
  width: 2px;
}

.msger-chat::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px grey;
  border-radius: 10px;
}

.msger-chat::-webkit-scrollbar-thumb {
  background: #890909;
  border-radius: 2px;
}

.hide-checkbox {
  display: none;
}

.star-checkbox::before {
  content: "\f005";
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  color: #fdcc0d;
}

.hide-checkbox[data-id]:checked + .star-checkbox:before {
  font-weight: 600;
  color: #fdcc0d;
}

.chatting {
  background-color: #000 !important;
  padding: 16px 28px;
  -webkit-border-radius: 20px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius: 20px;
  -moz-border-radius-bottomleft: 2px;
  border-radius: 20px;
  border-bottom-left-radius: 2px;
  display: inline-block;
}

.typing {
  align-items: center;
  display: flex;
  height: 17px;
}

.typing .dot {
  animation: mercuryTypingAnimation 1.8s infinite ease-in-out;
  background-color: #fff;
  border-radius: 50%;
  height: 7px;
  margin-right: 4px;
  vertical-align: middle;
  width: 7px;
  display: inline-block;
}

.typing .dot:nth-child(1) {
  animation-delay: 0.2s;
}

.typing .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.typing .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.typing .dot:last-child {
  margin-right: 0;
}

@keyframes mercuryTypingAnimation {
  0% {
    transform: translateY(0);
    background-color: #000c14;
  }

  28% {
    transform: translateY(-7px);
    background-color: #ffffff;
  }

  44% {
    transform: translateY(0);
    background-color: #d5022b;
  }
}

.msg-info-left {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}

ul#file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 2px;
}
nav.nav-index {
    overflow-y: auto;
    overflow-x:hidden;
    max-height: 350px;
    width:250px;
    padding: 5px 0 5px 30px;
}
.nav-index ul {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 260px;
  padding-top: 20px;
}

.nav-index ul li {
  list-style: none;
}

.nav-index ul li a {
  display: flex;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  position: relative;
  align-items: center;
}

.nav-index ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #e3e9f7;
  border-radius: 40px 0 0 40px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(90deg, #f8002f 0, #000c14 70%);
}

.nav-index ul li a:hover {
  color: #fff;
}

.nav-index ul li a:hover:before {
  width: 95%;
}

.msger-header-options button[type="submit"] {
  border: none;
  outline: 0;
  background: 0 0;
  color: #fff;
  position: relative;
  padding: 5px;
}

.msger-header-options button[type="submit"]::before {
  position: absolute;
  transition: all 0.3s ease-in-out;
  left: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 20%;
  background: #fff;
}

.msger-header-options button[type="submit"]::after {
  position: absolute;
  transition: all 0.3s ease-in-out;
  right: 0;
  top: 0;
  content: "";
  height: 2px;
  width: 20%;
  background: #fff;
}

.msger-header-options button[type="submit"]:hover::after,
.msger-header-options button[type="submit"]:hover::before {
  width: 100%;
}

.msger-header-options {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

.msger-header-options i {
  padding: 10px;
}

img.list-icon {
  width: 30px;
  padding-right: 10px;
}
/*------------------------------ Modal ------------------------------*/
.msger-header-options .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.msger-header-options .modal-content {
  background-color: #fefefe;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.msger-header-options .close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.msger-header-options .step {
  display: none;
}

.msger-header-options .step img {
  max-width: 100%;
  max-height: 80%;
}

.msger-header-options .step.active {
  display: flex;
}

.msger-header-options .prev,
.msger-header-options .next,
.msger-header-options .close-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background-color: #f1f1f1;
  cursor: pointer;
}

.msger-header-options.prev {
  margin-right: 10px;
}

.msger-header-options.close-btn {
  background-color: #f44336;
  color: white;
}

/*------------------------------ Modal ------------------------------*/
.trash {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: 0 0;
  border: 0;
  box-sizing: border-box;
  border-radius: 100%;
  font-size: inherit;
  font-weight: 700;
  position: relative;
  vertical-align: middle;
}

.trash::after,
.trash::before {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.trash:hover {
  color: #fff;
}

.trash::after,
.trash::before {
  top: 0;
  left: 0;
}

.trash::before {
  border: 2px solid transparent;
}

.trash:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
  border-bottom-color: #fff;
  transition: border-top-color 0.15s linear,
    border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.trash::after {
  border: 0 solid transparent;
}

.trash:hover::after {
  border-top: 2px solid #fff;
  border-left-width: 2px;
  border-right-width: 2px;
  transform: rotate(270deg);
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}

.redirect-upload {
  padding: 5px 0 5px 30px;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: 10px;
}

a.redirect {
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
}

label.custom-file-upload {
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  /* margin-bottom: 20px; */
}

input#fileToUpload {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
div#filename {
    color: white;
}
.redirect-upload input[type="submit"] {
  margin-right: 20px;
  border: none;
  background: #bb0908;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  width: 100%;
}

.redirect-upload input[type="submit"]:hover {
  background: #f30c0a;
}

#categoryDropdown select {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  border: none;
}

.redirect-upload form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg-text-para {
  font-size: 14px;
  font-weight: bold;
  padding: 0;
  margin: 0;
}

ul.msg-text-ul {
  list-style: square;
  margin: 0;
}

p.file_name {
  margin: 0;
}

/*===================================== Chat Dashboard Page =====================================*/



/*===================================== Login Page =====================================*/
.login-page {
  background: url(https://project.stagingdisplay.com/tomywolf/dashboard/assets/images/login-banner.jpeg);
  background-position: center;
  background-size: cover;
  font-family: Roboto, sans-serif;
  height: 100vh;
}

.login-page .login-box {
  margin-top: 75px;
  height: auto;
  background: #1a2226;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 50px;
}

.login-page .login-title {
  margin-top: 15px;
  text-align: center;
  font-size: 30px;
  letter-spacing: 2px;
  margin-top: 15px;
  font-weight: 700;
  color: #ecf0f5;
}

.login-page .login-form {
  margin-top: 25px;
  text-align: left;
}

.login-page input[type="text"] {
  background-color: #1a2226;
  border: none;
  border-bottom: 2px solid #0db8de;
  border-top: 0;
  border-radius: 0;
  font-weight: 700;
  outline: 0;
  margin-bottom: 20px;
  padding-left: 0;
  color: #ecf0f5;
}

.login-page input[type="password"] {
  background-color: #1a2226;
  border: none;
  border-bottom: 2px solid #0db8de;
  border-top: 0;
  border-radius: 0;
  font-weight: 700;
  outline: 0;
  padding-left: 0;
  margin-bottom: 20px;
  color: #ecf0f5;
}

.login-page .form-group {
  margin-bottom: 40px;
  outline: 0;
}

.login-page .form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 2px solid #0db8de;
  outline: 0;
  background-color: #1a2226;
  color: #ecf0f5;
}

.login-page input:focus {
  outline: 0;
  box-shadow: 0 0 0;
}

.login-page label {
  margin-bottom: 0;
}

.login-page .form-control-label {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.login-page .btn-outline-primary {
  border-color: #0db8de;
  color: #0db8de;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.login-page .btn-outline-primary:hover {
  background-color: #0db8de;
  right: 0;
}

.login-page .login-btm {
  float: left;
}

.login-page .login-text {
  text-align: left;
  padding-left: 0;
  color: #a2a4a4;
}

.login-page .login-btm {
  border: none;
  outline: 0;
  background: 0 0;
  color: #fff;
  position: relative;
  padding: 5px 10px;
}

.login-page .login-btm::before {
  position: absolute;
  transition: all 0.3s ease-in-out;
  left: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 30%;
  background: #f00;
}

.login-page .login-btm::after {
  position: absolute;
  transition: all 0.3s ease-in-out;
  right: 0;
  top: 0;
  content: "";
  height: 2px;
  width: 30%;
  background: #f00;
}

.login-page .login-btm:hover::after,
.login-page .login-btm:hover::before {
  width: 100%;
}

.login-page input.form-control {
  background: 0 0 !important;
  color: #fff;
  border: none;
  border-bottom: 1px solid red;
}

.login-page .login-logo {
  max-width: 200px;
  width: 100%;
}

.loginbttm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loginbttm .login-link {
  border: none;
  outline: 0;
  background: 0 0;
  color: #fff;
  position: relative;
  padding: 5px;
  text-decoration: none;
}

.loginbttm .login-link::before {
  position: absolute;
  transition: all 0.3s ease-in-out;
  left: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 30%;
  background: #f00;
}

.loginbttm .login-link::after {
  position: absolute;
  transition: all 0.3s ease-in-out;
  right: 0;
  top: 0;
  content: "";
  height: 2px;
  width: 30%;
  background: #f00;
}

.loginbttm .login-link:hover::after,
.loginbttm .login-link:hover::before {
  width: 100%;
}

/*===================================== Login Page =====================================*/

/*------------------- Dashboard Modal -------------------*/
/*.modal {*/
/*  display: none;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: rgba(0, 0, 0, 0.7);*/
/*  z-index: 1;*/
/*}*/

/*.modal-content {*/
/*  background-color: white;*/
/*  border-radius: 10px;*/
/*  max-width: 400px;*/
/*  margin: 100px auto;*/
/*  padding: 20px;*/
/*  text-align: center;*/
/*}*/

/*.close {*/
/*  float: right;*/
/*  font-size: 28px;*/
/*  font-weight: bold;*/
/*  cursor: pointer;*/
/*}*/

/*------------------- Dashboard Modal -------------------*/





/*--------------------------------Modal--------------------------------*/



/*.overlay {*/
    display: none; /* Hidden by default */
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.7);*/
/*    z-index: 1000;*/
/*}*/

/*.popup {*/
/*    position: relative;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    background-color: #000000;*/
/*    padding: 0;*/
/*    border-radius: 8px;*/
/*    width: 80%;*/
/*    height: 75%;*/
/*    max-width: 800px;*/
/*    max-height: 600px;*/
/*    overflow: hidden;*/
/*}*/

/*.close-button {*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    right: 20px;*/
/*    cursor: pointer;*/
/*    color: #f0f0f0;*/
/*    font-weight: bold;*/
/*    transition: color 0.3s ease;*/
/*    z-index: 1001;*/
/*    background: red;*/
/*    border-radius: 50%;*/
/*    height: 35px;*/
/*    width: 35px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.close-button:hover {*/
/*    color: #ff0000; */
/*}*/

/*video {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border-radius: 8px;*/
/*    display: block;*/
/*    object-fit: contain;*/
/*}*/



    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
        background-color: white;
        margin: 10% auto;
        padding: 20px;
        border-radius: 8px;
        width: 50%;
        position: relative;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }


    #heading {
        text-transform: uppercase;
        color: #673AB7;
        font-weight: normal
    }

    #msform {
        text-align: center;
        position: relative;
        margin-top: 20px
    }

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        position: relative
    }

    .form-card {
        text-align: left
    }

    #msform fieldset:not(:first-of-type) {
        display: none
    }

    #msform input,
    #msform textarea {
        padding: 8px 15px 8px 15px;
        border: 1px solid #ccc;
        border-radius: 0px;
        margin-bottom: 25px;
        margin-top: 2px;
        width: 100%;
        box-sizing: border-box;
        font-family: montserrat;
        color: #2C3E50;
        background-color: #ECEFF1;
        font-size: 16px;
        letter-spacing: 1px
    }

    #msform input:focus,
    #msform textarea:focus {
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        border: 1px solid #673AB7;
        outline-width: 0
    }

    #msform .action-button {
        width: 100px;
        background: #673AB7;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 0px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 0px 10px 5px;
        float: right
    }

    #msform .action-button:hover,
    #msform .action-button:focus {
        background-color: #311B92
    }

    #msform .action-button-previous {
        width: 100px;
        background: #616161;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 0px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px 10px 0px;
        float: right
    }

    #msform .action-button-previous:hover,
    #msform .action-button-previous:focus {
        background-color: #000000
    }

    .card {
        z-index: 0;
        border: none;
        position: relative
    }

    .fs-title {
        font-size: 25px;
        color: #673AB7;
        margin-bottom: 15px;
        font-weight: normal;
        text-align: left
    }

    .purple-text {
        color: #673AB7;
        font-weight: normal
    }

    .steps {
        font-size: 25px;
        color: gray;
        margin-bottom: 10px;
        font-weight: normal;
        text-align: right
    }

    .fieldlabels {
        color: gray;
        text-align: left
    }

    #progressbar {
        margin-bottom: 30px;
        overflow: hidden;
        color: lightgrey
    }

    #progressbar .active {
        color: #673AB7
    }

    #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
        float: left;
        position: relative;
        font-weight: 400
    }

    #progressbar #account:before {
        font-family: FontAwesome;
        content: "\f13e"
    }

    #progressbar #personal:before {
        font-family: FontAwesome;
        content: "\f007"
    }

    #progressbar #payment:before {
        font-family: FontAwesome;
        content: "\f030"
    }

    #progressbar #confirm:before {
        font-family: FontAwesome;
        content: "\f00c"
    }

    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #673AB7
    }

    .progress {
        height: 20px
    }

    .progress-bar {
        background-color: #673AB7
    }

    .fit-image {
        width: 100%;
        object-fit: cover
    }